home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / searchTermOverlay.xul < prev    next >
Encoding:
Extensible Markup Language  |  2005-05-13  |  3.7 KB  |  95 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!-- ***** BEGIN LICENSE BLOCK *****
  4.  Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5.  
  6.  The contents of this file are subject to the Mozilla Public License Version
  7.  1.1 (the "License"); you may not use this file except in compliance with
  8.  the License. You may obtain a copy of the License at
  9.  http://www.mozilla.org/MPL/
  10.  
  11.  Software distributed under the License is distributed on an "AS IS" basis,
  12.  WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.  for the specific language governing rights and limitations under the
  14.  License.
  15.  
  16.  The Original Code is Mozilla Communicator client code.
  17.  
  18.  The Initial Developer of the Original Code is
  19.  Netscape Communications Corporation.
  20.  Portions created by the Initial Developer are Copyright (C) 1998
  21.  the Initial Developer. All Rights Reserved.
  22.  
  23.  Contributor(s):
  24.    Alec Flett <alecf@netscape.com>
  25.    H├Ñkan Waara <hwaara@chello.se>
  26.  
  27.  Alternatively, the contents of this file may be used under the terms of
  28.  either of the GNU General Public License Version 2 or later (the "GPL"),
  29.  or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  30.  in which case the provisions of the GPL or the LGPL are applicable instead
  31.  of those above. If you wish to allow use of your version of this file only
  32.  under the terms of either the GPL or the LGPL, and not to allow others to
  33.  use your version of this file under the terms of the MPL, indicate your
  34.  decision by deleting the provisions above and replace them with the notice
  35.  and other provisions required by the GPL or the LGPL. If you do not delete
  36.  the provisions above, a recipient may use your version of this file under
  37.  the terms of any one of the MPL, the GPL or the LGPL.
  38.  
  39.  ***** END LICENSE BLOCK ***** -->
  40.  
  41. <!DOCTYPE overlay SYSTEM "chrome://messenger/locale/searchTermOverlay.dtd" >
  42.  
  43. <overlay xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  44.  
  45.   <script src="chrome://messenger/content/searchTermOverlay.js"/>
  46.   <script src="chrome://messenger/content/dateFormat.js"/>
  47.  
  48.   <vbox id="searchTermListBox">
  49.  
  50.     <radiogroup id="booleanAndGroup" orient="horizontal"
  51.                 selectedItem="or" oncommand="booleanChanged(event);">
  52.       <radio value="and" label="&matchAll.label;" accesskey="&matchAll.accesskey;"/>
  53.       <radio selected="true" value="or" label="&matchAny.label;" accesskey="&matchAny.accesskey;"/>
  54.     </radiogroup>
  55.     
  56.     <hbox flex="1">
  57.       <hbox id="searchterms"/>
  58.       <listbox flex="1" id="searchTermList">
  59.         <listcols>
  60.           <listcol flex="&searchTermListAttributesFlexValue;"/>
  61.           <listcol flex="&searchTermListOperatorsFlexValue;"/>
  62.           <listcol flex="&searchTermListValueFlexValue;"/>
  63.           <listcol flex="&searchTermListButtonsFlexValue;"/>
  64.           <listcol/>
  65.         </listcols>
  66.  
  67.         <!-- this is what the listitems will look like:
  68.           <listitem id="searchListItem">
  69.             <listcell id="preSearchAttr"/>
  70.             <listcell allowevents="true">
  71.               <searchattribute id="searchAttr1" for="searchOp1,searchValue1" flex="1"/>
  72.             </listcell>
  73.             <listcell id="preSearchOp"/>
  74.             <listcell allowevents="true">
  75.               <searchoperator id="searchOp1" opfor="searchValue1" flex="1"/>
  76.             </listcell>
  77.             <listcell id="preSearchValue"/>
  78.             <listcell allowevents="true" >
  79.               <searchvalue id="searchValue1" flex="1"/>
  80.             </listcell>
  81.             <listcell id="postSearchValue"/>
  82.           </listitem>
  83.           <listitem>
  84.             <listcell label="the.."/>
  85.             <listcell label="contains.."/>
  86.             <listcell label="text here"/>
  87.           </listitem>
  88.         -->
  89.       </listbox>
  90.       
  91.     </hbox>
  92.   </vbox>
  93.  
  94. </overlay>
  95.